home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / mbcharsetprober.py < prev    next >
Text File  |  2006-10-21  |  3KB  |  83 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is Mozilla Universal charset detector code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. # Netscape Communications Corporation.
  6. # Portions created by the Initial Developer are Copyright (C) 2001
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #   Shy Shalom - original C code
  12. #   Proofpoint, Inc.
  13. #
  14. # This library is free software; you can redistribute it and/or
  15. # modify it under the terms of the GNU Lesser General Public
  16. # License as published by the Free Software Foundation; either
  17. # version 2.1 of the License, or (at your option) any later version.
  18. # This library is distributed in the hope that it will be useful,
  19. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  21. # Lesser General Public License for more details.
  22. # You should have received a copy of the GNU Lesser General Public
  23. # License along with this library; if not, write to the Free Software
  24. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  25. # 02110-1301  USA
  26. ######################### END LICENSE BLOCK #########################
  27.  
  28. import constants, sys
  29. from constants import eStart, eError, eItsMe
  30. from charsetprober import CharSetProber
  31.  
  32. class MultiByteCharSetProber(CharSetProber):
  33.     def __init__(self):
  34.         CharSetProber.__init__(self)
  35.         self._mDistributionAnalyzer = None
  36.         self._mCodingSM = None
  37.         self._mLastChar = ['\x00', '\x00']
  38.  
  39.     def reset(self):
  40.         CharSetProber.reset(self)
  41.         if self._mCodingSM:
  42.             self._mCodingSM.reset()
  43.         if self._mDistributionAnalyzer:
  44.             self._mDistributionAnalyzer.reset()
  45.         self._mLastChar = ['\x00', '\x00']
  46.  
  47.     def get_charset_name(self):
  48.         pass
  49.  
  50.     def feed(self, aBuf):
  51.         aLen = len(aBuf)
  52.         for i in range(0, aLen):
  53.             codingState = self._mCodingSM.next_state(aBuf[i])
  54.             if codingState == eError:
  55.                 if constants._debug:
  56.                     sys.stderr.write(self.get_charset_name() + ' prober hit error at byte ' + str(i) + '\n')
  57.                 self._mState = constants.eNotMe
  58.                 break
  59.             elif codingState == eItsMe:
  60.                 self._mState = constants.eFoundIt
  61.                 break
  62.             elif codingState == eStart:
  63.                 charLen = self._mCodingSM.get_current_charlen()
  64.                 if i == 0:
  65.                     self._mLastChar[1] = aBuf[0]
  66.                     self._mDistributionAnalyzer.feed(self._mLastChar, charLen)
  67.                 else:
  68.                     self._mDistributionAnalyzer.feed(aBuf[i-1:i+1], charLen)
  69.                     
  70.         self._mLastChar[0] = aBuf[aLen - 1]
  71.         
  72.         if self.get_state() == constants.eDetecting:
  73.             if self._mDistributionAnalyzer.got_enough_data() and \
  74.                (self.get_confidence() > constants.SHORTCUT_THRESHOLD):
  75.                 self._mState = constants.eFoundIt
  76.  
  77.         return self.get_state()
  78.  
  79.     def get_confidence(self):
  80.         return self._mDistributionAnalyzer.get_confidence()
  81.